home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strtok.c < prev    next >
C/C++ Source or Header  |  1989-03-22  |  2KB  |  67 lines

  1. /* 
  2.  * strtok.c --
  3.  *
  4.  *    Source code for the "strtok" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strtok.c,v 1.1 89/03/22 16:08:00 rab Exp $";
  18. #endif
  19.  
  20. #ifndef __STDC__
  21. #define const
  22. #endif
  23.  
  24. #include <string.h>
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * strtok --
  30.  *
  31.  *      Split a string up into tokens
  32.  *
  33.  * Results:
  34.  *      If the first argument is non-NULL then a pointer to the
  35.  *      first token in the string is returned.  Otherwise the
  36.  *      next token of the previous string is returned.  If there
  37.  *      are no more tokens, NULL is returned.
  38.  *
  39.  * Side effects:
  40.  *    Overwrites the delimiting character at the end of each token
  41.  *      with '\0'.
  42.  *
  43.  *----------------------------------------------------------------------
  44.  */
  45.  
  46. char *
  47. strtok(s, delim)
  48.     char *s;            /* string to search for tokens */
  49.     const char *delim;  /* delimiting characters */
  50. {
  51.     static char *lasts;
  52.     register int ch;
  53.  
  54.     if (s == 0)
  55.     s = lasts;
  56.     do {
  57.     if ((ch = *s++) == '\0')
  58.         return 0;
  59.     } while (strchr(delim, ch));
  60.     --s;
  61.     lasts = s + strcspn(s, delim);
  62.     if (*lasts != 0)
  63.     *lasts++ = 0;
  64.     return s;
  65. }
  66.  
  67.